home *** CD-ROM | disk | FTP | other *** search
- #import <appkit/Application.h>
-
- @interface ClockApp: Application
- {
- id dialSizeSlider; // slider for dialsize.
- id typeMatrix; // the matrix for the clock type.
- id clockView; // the clockView.
- }
-
- + new; // create the new application, and make us its delegate.
- - terminate:sender; // store the defaults, and go away.
- - setClockView:anObject;
- - setDialSizeSlider:anObject;
- - setTypeMatrix:anObject;
- - appDidInit:sender; // get info such as window positioning.
-
- @end
-
-